home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 147 / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan).7z / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan) (Track 1).bin / docs / ippon / xsptest2 / makefile next >
Makefile  |  2000-07-07  |  264b  |  24 lines

  1. #    makefile for xsptest2.x
  2.  
  3. CC    = gcc
  4. CFLAGS    =
  5. AS    = has
  6. LD    = hlk
  7. INC    =
  8. LIBS    = libc.a libgnu.a libiocs.a xsp2lib.o
  9. LZH    = XSPTEST
  10.  
  11. %.o:    %.c
  12.     $(CC) $(CFLAGS) -c $<
  13.  
  14.  
  15. xsptest2.x:    xsptest2.o
  16.     $(LD) $^ -o $@ -l $(LIBS)
  17.  
  18. xsptest2.o:    xsptest2.c
  19.  
  20.  
  21. dist:
  22.     LHA a -t ../$(LZH)
  23.  
  24.